1project('testprovider','c')
2
3deplib = dependency('libtestprovider', static:true)
4
5dprovidertest = executable('dprovidertest',
6    files('./receiver.c'),
7    dependencies:[deplib],
8    c_args:['-Wall','-Werror'],
9)
10
11test('testprovider',dprovidertest)
12